@font-face {
  font-family: "Medium";
  src: url(/font/PingFangSC-Medium.otf);
}
@font-face {
  font-family: "Regular";
  src: url(/font/PingFangSC-Regular.otf);
}
@font-face {
  font-family: "Semibold";
  src: url(/font/PingFangSC-Semibold.otf);
}
.box {
  width: 75%;
}
#sceneListToggle {
  display: none;
}

.viewControlButton-6 {
  margin-left: 0;
  bottom: 250px;
}

.viewControlButton-5 {
  margin-left: 0;
  bottom: 284px;
}
.viewControlButton {
  right: 48px;
  left: unset;
}
#sceneList.enabled {
  margin-left: 0;
}

/* banner */
.banner {
  position: relative;
  top: -90px;
  left: 0;
  width: 15%;
  height: 100vh;
  background: linear-gradient(
    -61deg,
    rgba(25, 33, 54, 0.8),
    rgba(28, 40, 71, 0.8)
  );
  border-right: 2px solid rgba(7, 143, 34, 0);
  transition: width 0.5s linear; /* 宽度变化时的过渡效果 */
}
.banner:hover {
  border-right: 2px solid rgba(7, 143, 34, 1);
}
.logo {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.logo > img:nth-child(2) {
  display: none;
}
.logo::after {
  content: "";
  display: block;
  width: 90%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #ffffff,
    transparent
  ); /* 横向渐变 */
  opacity: 0.3;
  position: absolute;
  bottom: 0;
}
.logo > img {
  width: 70%;
}
.label {
  width: calc(100% - 30px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 0;
  position: relative;
}
.label > img {
  width: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -27px;
  margin: auto;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transform: rotate(180deg);
  display: none;
}
.label span {
  width: 30px;
  display: block;
  margin-right: 6px;
}
.label span img {
  width: 100%;
}
.label > div > p {
  font-family: "Medium";
  font-size: 18px;
  color: #ffffff;
}
.label > div > i {
  font-family: "Semibold";
  font-size: 14px;
  color: #ffffff;
  font-style: normal;
  display: block;
  margin-top: 3px;
}
.href {
  width: 100%;
  height: 65%;
  overflow-y: scroll; /* 允许垂直滚动 */
  scrollbar-width: none; /* 针对 Firefox 隐藏滚动条 */
  -ms-overflow-style: none; /* 针对 IE 和旧版 Edge 隐藏滚动条 */
  margin: 0 auto;
}
.href::-webkit-scrollbar {
  display: none; /* 针对 Chrome、Safari 隐藏滚动条 */
}
.href > a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 0;
}
.href > a.active {
  background-color: rgba(11, 21, 51, 0.8);
}
.href > a > span {
  width: 15px;
  display: block;
  margin-right: 6px;
  margin-left: 15px;
  margin-top: 6px;
}
.href > a > span img {
  width: 100%;
}
.href > a > div {
  width: calc(100% - 15px);
  margin-right: 15px;
}
.href > a > div > p {
  font-family: "Medium";
  font-size: 16px;
  color: #ffffff;
}
.href > a > div > i {
  font-family: "Regular";
  font-size: 14px;
  color: #cfd5e5;
  font-style: normal;
  display: block;
  line-height: 16px;
  margin-top: 8px;
}

body.multiple-scenes #titleBar {
  left: unset;
}
body.fullscreen-enabled #titleBar {
  width: 85%;
  padding: 0 48px;
  height: 89px;
  background: rgba(255, 255, 255, 0.4);
  position: absolute;
  left: unset;
  right: 0 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: width 0.5s linear; /* 宽度变化时的过渡效果 */
}
#titleBar > div:nth-child(1) {
  display: flex;
  align-items: center;
}
#titleBar > div:nth-child(1) > span {
  display: block;
  width: 38px;
  margin-right: 17px;
}
#titleBar > div:nth-child(1) > span img {
  width: 100%;
}
#titleBar > div:nth-child(1) > div h1 {
  font-family: "Semibold";
  font-size: 24px;
  color: #01133f;
  font-style: normal;
  text-align: left;
}

#titleBar > div:nth-child(1) > div h2 {
  font-family: "Semibold";
  font-size: 14px;
  color: #00123e;
  text-align: left;
  margin-top: 7px;
}

#titleBar > div:nth-child(2) {
  display: flex;
}
#titleBar > div:nth-child(2) > a:nth-child(2) {
  margin: 0 18px;
}
#autorotateToggle,
#fullscreenToggle,
#clearToggle {
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
#autorotateToggle .icon,
#fullscreenToggle .icon,
#clearToggle .icon {
  width: 25px;
  height: auto;
}
#clearToggle .icon.on {
  display: none;
}
.logo720 {
  position: absolute;
  top: 150px;
  right: 48px;
  width: 69px;
  height: 69px;
  background: rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo720 img {
  width: 58%;
}
.viewControlButton {
  width: 34px;
  height: 34px;
  background: #ffffff;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.viewControlButton .icon {
  width: 80%;
  height: auto;
}
.viewControlButton-1,
.viewControlButton-2,
.viewControlButton-3,
.viewControlButton-4 {
  display: none !important;
}
.viewControlButton-5 {
  border-radius: 3px 3px 0 0;
}
.viewControlButton-6 {
  border-radius: 0 0 3px 3px;
}
.application {
  position: absolute;
  right: 6px;
  bottom: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.application > span {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.49);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.application > span img {
  width: 60%;
}
.application > p {
  font-family: "Regular";
  font-size: 16px;
  color: #ffffff;
  margin: 12px 0 4px 0;
}
.application > i {
  font-family: "Regular";
  font-size: 16px;
  color: #ffffff;
  font-style: normal;
}

@keyframes block-1 {
  0% {
    bottom: 120px;
    opacity: 1;
  }
  100% {
    bottom: 70px;
    opacity: 0;
    display: none;
  }
}
@keyframes block-2 {
  0% {
    bottom: 70px;
    opacity: 0;
    display: block;
  }
  100% {
    bottom: 120px;
    opacity: 1;
  }
}
.block-1 {
  animation: block-1 0.5s forwards;
}
.block-2 {
  animation: block-2 0.5s forwards;
}
#sceneList {
  width: 85%;
  position: absolute;
  top: unset;
  left: unset;
  right: 0;
  padding: 0 200px 0 100px;
  bottom: 120px;
  margin: auto;
  transition: width 0.5s linear; /* 宽度变化时的过渡效果 */
}

#sceneList .scenes {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  gap: 10px; /* 子项间距 */
}
#sceneList > .scenes > a {
  width: calc(13% - 10px);
  height: auto;
  border: 2px solid rgba(160, 9, 9, 0);
  flex-shrink: 0; /* 防止子元素收缩 */
}
#sceneList .scenes {
  background: none;
}
#sceneList .scene .text {
  padding: unset;
  position: relative;
  height: auto;
  line-height: unset;
}
#sceneList .scene .text > span {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#sceneList .scene .text > span > p {
  font-family: "Medium";
  font-size: 14px;
  color: #ffffff;
  line-height: normal;
}
#sceneList .scene .text > span > i {
  font-family: "Regular";
  font-size: 12px;
  color: #ffffff;
  font-style: normal;
  line-height: normal;
}
#sceneList .scene .text img {
  width: 100%;
  vertical-align: text-bottom;
}
.no-touch #sceneList .scene:hover {
  background: unset;
  border: 2px solid #078f22;
}
#sceneList .scene.current {
  background: unset;
  border: 2px solid #078f22;
}
.m-right,
.m-left {
  display: none;
}
@media (max-width: 1600px) {
  #sceneList > .scenes > a {
    width: calc(20% - 10px);
    border: 1px solid rgba(160, 9, 9, 0);
  }
}
@media (max-width: 1200px) {
  #sceneList > .scenes > a {
    width: calc(30% - 10px);
    border: 1px solid rgba(160, 9, 9, 0);
  }
}
@media (max-width: 750px) {
  .logo720 {
    top: 100px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
  .viewControlButton {
    right: 15px;
  }
  .application {
    width: 50px;
    right: 8px;
  }
  .application > p {
    font-size: 12px;
  }
  .application > i {
    font-size: 12px;
    text-align: center;
  }
  body.fullscreen-enabled #titleBar {
    left: 0;
    width: 100%;
    padding: 0 15px;
    height: 70px;
  }
  #titleBar > div:nth-child(1) > span {
    width: 30px;
    margin-right: 5px;
  }
  #titleBar > div:nth-child(1) > div h1 {
    font-size: 16px;
  }
  #titleBar > div:nth-child(1) > div h2 {
    font-size: 12px;
    margin-top: 4px;
  }
  #fullscreenToggle {
    display: none !important;
  }
  #titleBar > div:nth-child(2) > a:nth-child(2) {
    margin: 0 0 0 10px;
  }
  #autorotateToggle,
  #fullscreenToggle,
  #clearToggle {
    width: 35px;
    height: 35px;
  }
  #autorotateToggle .icon,
  #fullscreenToggle .icon,
  #clearToggle .icon {
    width: 18px;
  }
  #sceneList {
    width: 100%;
  }
  .banner {
    top: -35px;
    left: -100%;
    width: 100%;
    background: linear-gradient(
      -61deg,
      rgba(25, 33, 54, 1),
      rgba(28, 40, 71, 1)
    );
    z-index: 999;
    transition: left 0.5s linear;
    overflow: hidden;
  }
  .m-right {
    display: block;
    position: fixed;
    left: -10px;
    top: 90px;
    z-index: 9999;
  }
  .m-left {
    display: block;
    position: absolute;
    right: -16px;
    top: 90px;
    z-index: 9999;
    transform: rotate(180deg);
  }
  @keyframes block-1 {
    0% {
      bottom: 70px;
      opacity: 1;
    }
    100% {
      bottom: 20px;
      opacity: 0;
      display: none;
    }
  }
  @keyframes block-2 {
    0% {
      bottom: 20px;
      opacity: 0;
      display: block;
    }
    100% {
      bottom: 70px;
      opacity: 1;
    }
  }
  #sceneList {
    padding: 0 15px;
    bottom: 70px;
  }
  .mobile #sceneList .scene {
    height: auto;
  }
  #sceneList > .scenes > a {
    width: calc(35% - 10px);
    border: 1px solid rgba(160, 9, 9, 0);
  }
  #sceneList .scene .text img {
    vertical-align: bottom;
  }
  #sceneList .scene .text > span {
    bottom: 5px;
  }
  #sceneList .scene .text > span > p {
    font-size: 10px;
  }
  #sceneList .scene .text > span > i {
    font-size: 8px;
  }
  #sceneList .scene.current {
    background: unset;
    border: 1px solid #078f22;
  }
  #sceneList .scenes {
    overflow-x: scroll;
  }
}
